home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: File
- @Method: create - attempts to create the file or directory.
- Returns true if the file or directory exists after calling
- this method.
- @Syntax: file.create()
- @Summary: create - attempts to create the file or directory.
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("file.create()", selection);
- editor.setActive("Insert file.create");
- }
- }
-
- !!/Script
-